home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000824-20010305 / 000076_news@columbia.edu _Mon Oct 16 23:40:53 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
  3.     by fozimane.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id XAA16368
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Mon, 16 Oct 2000 23:40:52 -0400 (EDT)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id XAA29418
  7.     for <kermit.misc@watsun.cc.columbia.edu>; Mon, 16 Oct 2000 23:39:37 -0400 (EDT)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id XAA17844
  10.     for kermit.misc@watsun.cc.columbia.edu; Mon, 16 Oct 2000 23:15:00 -0400 (EDT)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: jaltman@columbia.edu (Jeffrey Altman)
  13. Subject: Re: No Carrier
  14. Date: 17 Oct 2000 03:14:58 GMT
  15. Organization: Columbia University
  16. Message-ID: <8sgg7i$hdh$1@newsmaster.cc.columbia.edu>
  17. To: kermit.misc@columbia.edu
  18.  
  19. In article <3bOG5.57125$bI6.1974759@news1.giganews.com>,
  20. Steve <steve@baus-systems.com> wrote:
  21. : Sounds like we need to rethink the plan of attack here...
  22. : In the short term, is there any easy way around the No Carrier when we send
  23. : a Finish from the client?  A setting on the host or a modem initialization
  24. : setting on the client?  I cant see where putting multiple servers in the
  25. : host script is going to work.
  26. : Thanks,
  27. : Steve
  28.  
  29. Steve:
  30.  
  31. You are sending a FINISH command upon making a connection because the
  32. MS-DOS Kermit fails to terminate when the prior connection is lost.
  33. This is not a problem with K95 or C-Kermit.  If you create a loop
  34. that looks like
  35.  
  36.   SET CARRIER-WATCH ON
  37.   SET MODEM TYPE ...
  38.   SET PORT ...
  39.   SET FLOW ...
  40.   WHILE TRUE  {
  41.     ANSWER 0
  42.     IF SUCCESS {
  43.       SERVER      ; This one is terminated by the FINISH
  44.       SERVER      ; This one is terminated by the connection loss
  45.     }
  46.     HANGUP
  47.   }
  48.  
  49. you will emulate the behavior of the MS-DOS Kermit SERVER which never
  50. terminates.
  51.  
  52.  
  53.  
  54.  
  55.                   Jeffrey Altman * Sr.Software Designer
  56.                  The Kermit Project * Columbia University
  57.                612 West 115th St * New York, NY * 10025 * USA
  58.      http://www.kermit-project.org/ * kermit-support@kermit-project.org